home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / doom / hxtutor.zip / HXTUTO03.ACS < prev    next >
Text File  |  1996-07-09  |  307b  |  16 lines

  1. #include "common.acs"
  2.  
  3. int BellRung;
  4.  
  5. script 3 (void)
  6. {
  7.     if(BellRung == 0)
  8.     {
  9.         delay(32);
  10.         setlinetexture(1, SIDE_FRONT, TEXTURE_MIDDLE, "BLANK");
  11.         setlinetexture(1, SIDE_BACK, TEXTURE_MIDDLE, "BLANK");
  12.         setlineblocking(1, OFF);
  13.         BellRung ++;
  14.     }
  15. }
  16.